COVID-19 in Italy. Visuals


(alternatively, see results with full code in Jupyter notebook here)

 


Data source: this GitHubi page

Authors and sources mentioned: Editore/Autore del dataset: Dipartimento della Protezione Civile. Categoria ISO 19115: Salute. Dati forniti dal Ministero della Salute.

Regional data files (Dati per Regione):
  • Struttura file giornaliero: dpc-covid19-ita-regioni-yyyymmdd.csv (dpc-covid19-ita-regioni-20200224.csv)
  • File complessivo: dpc-covid19-ita-regioni.csv
  • File ultimi dati (latest): dpc-covid19-ita-regioni-latest.csv

 


Current data as of the date:
2020-10-12T17:00:00

 

What's in the original dataframe?

Showing all variable names in the original dataframe
Out[66]:
Index(['data', 'stato', 'codice_regione', 'denominazione_regione', 'lat',
       'long', 'ricoverati_con_sintomi', 'terapia_intensiva',
       'totale_ospedalizzati', 'isolamento_domiciliare', 'totale_positivi',
       'variazione_totale_positivi', 'nuovi_positivi', 'dimessi_guariti',
       'deceduti', 'casi_da_sospetto_diagnostico', 'casi_da_screening',
       'totale_casi', 'tamponi', 'casi_testati', 'note'],
      dtype='object')

 

Rows for the last 5 days

Out[81]:
data stato codice_regione denominazione_regione lat long ricoverati_con_sintomi terapia_intensiva totale_ospedalizzati isolamento_domiciliare ... variazione_totale_positivi nuovi_positivi dimessi_guariti deceduti casi_da_sospetto_diagnostico casi_da_screening totale_casi tamponi casi_testati note
4867 2020-10-12T17:00:00 ITA 19 Sicilia 38.115697 13.362357 404 42 446 4236 ... 281 298 4571 339 6133.0 3459.0 9592 552826 397546.0 NaN
4868 2020-10-12T17:00:00 ITA 9 Toscana 43.769231 11.255889 205 40 245 6259 ... 362 466 10942 1180 14189.0 4437.0 18626 848466 570706.0 NaN
4869 2020-10-12T17:00:00 ITA 10 Umbria 43.106758 12.388247 61 9 70 1300 ... 134 148 2012 90 1844.0 1628.0 3472 233252 138736.0 NaN
4870 2020-10-12T17:00:00 ITA 2 Valle d'Aosta 45.737503 7.320149 9 3 12 213 ... 28 32 1125 146 1352.0 144.0 1496 31492 21680.0 NaN
4871 2020-10-12T17:00:00 ITA 5 Veneto 45.434905 12.338452 244 29 273 6016 ... 201 328 23323 2219 22250.0 9581.0 31831 2069955 808554.0 NaN

5 rows × 21 columns


 

Variables names into English and their explanation

  • Date : Date
  • HospWithSymptoms : Currently hospitalized patients with symptoms
  • IC : Intensive care
  • HospTotal: Total number of currently hospitalized patients
  • AtHome : Currently at home confinement
  • CurrentlyPositive : Total amount of current positive cases (Hospitalised patients + Home confinement)
  • NewPositives : New amount of positive cases (Actual total amount of current positive cases - total amount of current positive cases of the previous day)
  • Recovered : Recovered
  • Deaths : Deaths
  • TotalCases : Total amount of positive cases
  • NoOfTests : Tests performed

 

(double click and click on legend to select one or multiple regions in the graph)


 

Italy as a whole

Data from all regions aggregated